ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / MultiSelectListBox<T> Class / SelectAllLabel Property






In This Topic
    SelectAllLabel Property (MultiSelectListBox<T>)
    In This Topic
    Gets or sets the string to be used as a label for the "Select All" checkbox that is displayed when the ShowSelectAllCheckbox property is set to true.
    Syntax
    'Declaration
     
    
    Public Property SelectAllLabel As System.String
    'Usage
     
    
    Dim instance As MultiSelectListBox(Of T)
    Dim value As System.String
     
    instance.SelectAllLabel = value
     
    value = instance.SelectAllLabel
    public System.string SelectAllLabel {get; set;}
    public read-write property SelectAllLabel: System.String; 
    public function get,set SelectAllLabel : System.String
    public: __property System.string* get_SelectAllLabel();
    public: __property void set_SelectAllLabel( 
       System.string* value
    );
    public:
    property System.String^ SelectAllLabel {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    This property is set to null by default, which causes the control to show a localized version of the string "Select All".
    See Also